From 07341ade4c5fb2a8f7c8ea88ffaeff4fc77fb5e0 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Wed, 1 Nov 2006 20:22:21 +0000 Subject: [PATCH] Update language specific lists. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2468 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/win32/gui-2/about.dfm | Bin 3504 -> 3505 bytes gpsbabel/win32/gui-2/about.pas | 8 ++++---- gpsbabel/win32/gui-2/select.pas | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gpsbabel/win32/gui-2/about.dfm b/gpsbabel/win32/gui-2/about.dfm index 5e235e3c7ff4b25eb9fed9e95e33a5f18f1be543..3437553e2abe7e2e824e2abec44decce73ae2e8a 100644 GIT binary patch delta 100 zcmdlWy-`}=KNmxYTad4#lYeLkgMq-jjRJSrt*xE&3o45;(=$pGG@LaRj0_A+b%2DK zf`3k8nu2#uYG$5-M!sH>UN(s7kX}%nl$ey7qnBTlzFCdqA0vxG6qU)cRlbM&Qmy)_!o#P)POL{?Z(q>Jr4rT!7lpdb| diff --git a/gpsbabel/win32/gui-2/about.pas b/gpsbabel/win32/gui-2/about.pas index e8a8d2d0f..92efefd44 100644 --- a/gpsbabel/win32/gui-2/about.pas +++ b/gpsbabel/win32/gui-2/about.pas @@ -1,7 +1,7 @@ unit about; { - Copyright (C) 2005 Olaf Klein, o.b.klein@gpsbabel.org + Copyright (C) 2005,2006 Olaf Klein, o.b.klein@gpsbabel.org This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -84,9 +84,9 @@ begin lbSFURL.Left := lbHint1.Left + lbHint1.Width + 4; lbTranslators.Caption := lbTranslators.Caption + ':'; - lbxTranslators.Items.Add(_('German by Olaf Klein')); - lbxTranslators.Items.Add(_('French by Lilian Morinon')); - + lbxTranslators.Items.Add(_('German') + ' ' + _('by') + ' Olaf Klein'); + lbxTranslators.Items.Add(_('French') + ' ' + _('by') + ' Lilian Morinon'); + lbxTranslators.Items.Add(_('Spanish') + ' ' + _('by') + ' Daniel Diaz'); end; procedure TfrmAbout.lbURLMouseMove(Sender: TObject; Shift: TShiftState; X, diff --git a/gpsbabel/win32/gui-2/select.pas b/gpsbabel/win32/gui-2/select.pas index b0bf0c20f..43e166f72 100644 --- a/gpsbabel/win32/gui-2/select.pas +++ b/gpsbabel/win32/gui-2/select.pas @@ -78,10 +78,10 @@ begin s := Builtin.Strings[i]; if (s = '') then Continue; - if (CompareText(s, 'de') = 0) then sx := 'German' else - if (CompareText(s, 'es') = 0) then sx := 'Spanish' else - if (CompareText(s, 'fr') = 0) then sx := 'French' else - if (CompareText(s, 'en') = 0) then sx := 'English' else + if (CompareText(s, 'de') = 0) then sx := _('German') else + if (CompareText(s, 'es') = 0) then sx := _('Spanish') else + if (CompareText(s, 'fr') = 0) then sx := _('French') else + if (CompareText(s, 'en') = 0) then sx := _('English') else sx := '???'; sx := Format('%s - %s', [s, sx]); -- 2.30.2